home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / domove.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-06-16  |  1.5 KB  |  69 lines  |  [TEXT/ttxt]

  1. /* domove.c - DoMove */
  2.  
  3. #include "mac/quickdraw.h"
  4. #include "mac/osintf.h"
  5. #include "mac/toolintf.h"
  6. #include "othello.h"
  7.  
  8.  
  9.  
  10. DoMove(move)
  11. MoveRecord    move;
  12. {
  13.     MoveList moves;
  14.     int    inrow, incol;
  15.  
  16.     ClearMessages();
  17.     if (player[curColor] == Macintosh) {
  18.         strcpy(message, "Thinking...");
  19.         UpdateInfo();
  20.         ChooseMove(&move, GameBoard);
  21.         strcpy(message, "");
  22.     }
  23.     if (StopThinking)
  24.         return;
  25.     if (GameBoard[move.row][move.col] & stoneColor) {
  26.         strcpy(message, "Illegal move (space is occupied)");
  27.         return;
  28.     }
  29.     PlaceStone(move.row, move.col, curColor);
  30.     if (DoFlips(curColor, move, GameBoard, moves, VISIBLE) == 0) {
  31.         strcpy(message, "Illegal move (no flips)");
  32.         PlaceStone(move.row, move.col, stoneEmpty);
  33.         return;
  34.     }
  35.  
  36.     /* Otherwise, a legal move; if it was a corner, adjust weights */
  37.     inrow = incol = 0;
  38.     switch (move.row) {
  39.     case 1:        inrow = 2;
  40.             break;
  41.     case BOARDSIZE:    inrow = BOARDSIZE - 1;
  42.             break;
  43.     }
  44.     switch (move.col) {
  45.     case 1:        incol = 2;
  46.             break;
  47.     case BOARDSIZE:    incol = BOARDSIZE - 1;
  48.             break;
  49.     }
  50.     if (inrow && incol)
  51.         position[inrow][incol] = 0;
  52.  
  53.     /* Find out who moves next. */
  54.     if (FindMoves(opposite(curColor), GameBoard, moves, ALL) > 0)
  55.         curColor = opposite(curColor);
  56.     else if (FindMoves(curColor, GameBoard, moves, ALL) > 0)
  57.         sprintf(message, "%s cannot move.",
  58.             colorName[opposite(curColor)]);
  59.     else {
  60.         GameOver = TRUE;
  61.         if (nStones[stoneWhite] == nStones[stoneBlack])
  62.             strcpy(message, "A tie!");
  63.         else
  64.             sprintf(message, "%s wins.",
  65.                 (nStones[stoneWhite] > nStones[stoneBlack])?
  66.                     "White" : "Black");
  67.     }
  68. }
  69.